home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Classicos / Pac Man white.swf / scripts / frame_2 / DoAction.as
Encoding:
Text File  |  2006-06-13  |  371 b   |  19 lines

  1. String.prototype.addCommas = function()
  2. {
  3.    var _l3 = this.length;
  4.    var _l2 = "";
  5.    var _l1 = 0;
  6.    while(_l1 <= _l3)
  7.    {
  8.       _l2 = this.charAt(_l3 - _l1) + _l2;
  9.       if(_l1 % 3 == 0 && _l1 > 0 && _l1 < _l3)
  10.       {
  11.          _l2 = "," + _l2;
  12.       }
  13.       _l1++;
  14.    }
  15.    return _l2;
  16. };
  17. game_so = SharedObject.getLocal("neavePacman");
  18. score = 0;
  19.